home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_smod.c < prev    next >
C/C++ Source or Header  |  1987-05-06  |  174b  |  12 lines

  1. #include <dos.h>
  2.  
  3. void crt_set_mode( mode ) int mode;
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.h.ah = 0;
  8.     regs.h.al = mode;
  9.     
  10.     int86( 0x10, ®s, ®s );
  11. }
  12.